WriteRange<T>(T[]) Method
In This Topic
Writes an array of values to the current stream, and advances the current position within this stream by the number of bytes written.
Syntax
'Declaration
Public Overloads Sub WriteRange(Of As {New, Struct})( _
ByVal () As _
)
public void WriteRange<>(
[]
)
where T: new(), struct
Parameters
- data
- An array of values to be written to the current stream.
Type Parameters
- T
Exceptions
Exception | Description |
System.NotSupportedException | This stream does not support writing. |
See Also